home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000217-20000824 / 000420_news@columbia.edu _Wed Jul 19 10:40:50 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by uhaligani.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id KAA27915
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Wed, 19 Jul 2000 10:40:50 -0400 (EDT)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA27221
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 19 Jul 2000 10:40:49 -0400 (EDT)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id KAA17101
  10.     for kermit.misc@watsun.cc.columbia.edu; Wed, 19 Jul 2000 10:36:01 -0400 (EDT)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: fdc@columbia.edu (Frank da Cruz)
  13. Subject: Re: c-kermit and ibm 3270 mainframe protocol
  14. Date: 19 Jul 2000 14:35:59 GMT
  15. Organization: Columbia University
  16. Message-ID: <8l4ecf$glv$1@newsmaster.cc.columbia.edu>
  17. To: kermit.misc@columbia.edu
  18.  
  19. In article <8l32kr$s9e$1@newsmaster.cc.columbia.edu>,
  20. Jeffrey Altman <jaltman@watsun.cc.columbia.edu> wrote:
  21. : In article <20000718184935.16146.00001417@ng-fz1.aol.com>,
  22. : CSpasov <cspasov@aol.com> wrote:
  23. : : I have tried to use crtl-\ then b for the BREAK key and to connect to the
  24. : : mainframe.This BREAK command has no effect.However I cannot even enter the
  25. : : command like dial vtam for starters. Is there anyway that I can get the
  26. : : fullscreen tn3270 server or work around with the linemode connection??
  27. : The BREAK signal which is generated by Ctrl-\ b is not the same as 
  28. : the BREAK command sent by the BREAK key on a 3270 terminal.  Different 
  29. : concepts.
  30. :
  31. : : Someone told me that there was a way to transfer files over c-kermit and
  32. : : that's how it was done in 1993. I have no control over the kermit software
  33. : : on the machines running solaris so I can't have the machines upgraded at
  34. : : this time. How was file transfer done with c-kermit prior to version
  35. : : 7.0??? I have C-Kermit 5A(190).  And how were people back then able to log
  36. : : into the machine or most importantly navigate through the mainframe
  37. : : connection without using tn3270 terminal emulation programs??
  38. : C-Kermit does not support TN3270 protocol.  Therefore, you must either 
  39. : connect to a terminal server which supports VT100 to 327x protocol 
  40. : conversion or use tn3270 to make the connection.  
  41. As noted earlier in this thread, you can use C-Kermit 7.0 (but not earlier)
  42. to make the mainframe connection *through* the tn3270 program, and this lets
  43. you transfer files with IBM mainframe Kermit.  It doesn't matter that you
  44. have no control over the Sun.  Just download the appropriate C-Kermit 7.0
  45. binary:
  46.  
  47.   http://www.columbia.edu/kermit/ckermit.html
  48.  
  49. to your own account on the Sun and run it instead of the system one.  For
  50. example, if you have Solaris 2.5.1 on Sparc architecture, then you would
  51. download:
  52.  
  53.   ftp://kermit.columbia.edu/kermit/bin/cku196.solaris25-sparc-2.5.1
  54.  
  55. and then:
  56.  
  57.   mv cku196.solaris25-sparc-2.5.1 kermit
  58.   chmod +x kermit
  59.   ./kermit
  60.   C-Kermit>pty tn3270 xyzcorp.com
  61.  
  62. - Frank